home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / softwareupdate / system / arexx_for_beginners / articles_01-10 / example3-1.rexx < prev    next >
OS/2 REXX Batch file  |  1995-05-17  |  202b  |  9 lines

  1. /* Example3-1.rexx */
  2.  
  3. Count = 1
  4.  
  5. DO FOREVER
  6.   SAY 'Hi there - I am your first example ARexx Program - Count =' Count
  7.   SAY 'Hold down the CTRL key and press C to stop me.'||'a'x
  8.   Count = Count + 1
  9. END